home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / SCSL / lsamen.z / lsamen
Encoding:
Text File  |  2002-10-03  |  2.3 KB  |  67 lines

  1.  
  2.  
  3.  
  4. LLLLSSSSAAAAMMMMEEEENNNN((((3333SSSS))))                                                          LLLLSSSSAAAAMMMMEEEENNNN((((3333SSSS))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      LSAMEN - test if the first N letters of CA are the same as the first N
  10.      letters of CB, regardless of case
  11.  
  12. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  13.      LOGICAL FUNCTION LSAMEN( N, CA, CB )
  14.  
  15.          CHARACTER*(  * ) CA, CB
  16.  
  17.          INTEGER      N
  18.  
  19. IIIIMMMMPPPPLLLLEEEEMMMMEEEENNNNTTTTAAAATTTTIIIIOOOONNNN
  20.      These routines are part of the SCSL Scientific Library and can be loaded
  21.      using either the -lscs or the -lscs_mp option.  The -lscs_mp option
  22.      directs the linker to use the multi-processor version of the library.
  23.  
  24.      When linking to SCSL with -lscs or -lscs_mp, the default integer size is
  25.      4 bytes (32 bits). Another version of SCSL is available in which integers
  26.      are 8 bytes (64 bits).  This version allows the user access to larger
  27.      memory sizes and helps when porting legacy Cray codes.  It can be loaded
  28.      by using the -lscs_i8 option or the -lscs_i8_mp option. A program may use
  29.      only one of the two versions; 4-byte integer and 8-byte integer library
  30.      calls cannot be mixed.
  31.  
  32. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  33.      LSAMEN tests if the first N letters of CA are the same as the first N
  34.      letters of CB, regardless of case. LSAMEN returns .TRUE. if CA and CB are
  35.      equivalent except for case and .FALSE. otherwise.  LSAMEN also returns
  36.      .FALSE. if LEN( CA ) or LEN( CB ) is less than N.
  37.  
  38.  
  39. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  40.      N       (input) INTEGER
  41.              The number of characters in CA and CB to be compared.
  42.  
  43.      CA      (input) CHARACTER*(*)
  44.              CB      (input) CHARACTER*(*) CA and CB specify two character
  45.              strings of length at least N.  Only the first N characters of
  46.              each string will be accessed.
  47.  
  48. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  49.      INTRO_LAPACK(3S), INTRO_SCSL(3S)
  50.  
  51.      This man page is available only online.
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.